        ' F o r m   M o v e m e n t 
 
         ' ' '   < s u m m a r y > 
 
         ' ' '   T h i s   s a m p l e s   s o l v e s   t h e   p r o b l e m   f o r   t h e   b o r d e r l e s s   f o r m   n o t   b e i n g   m o v e a b l e . 
 
         ' ' '   < / s u m m a r y > 
 
         ' ' '   < p a r a m   n a m e = " s e n d e r " > < / p a r a m > 
 
         ' ' '   < p a r a m   n a m e = " e " > < / p a r a m > 
 
         ' ' '   < r e m a r k s > < / r e m a r k s > 
 
         P r i v a t e   S u b   F r m _ A I _ M o u s e D o w n ( s e n d e r   A s   O b j e c t ,   e   A s   M o u s e E v e n t A r g s )   H a n d l e s   M e . M o u s e D o w n 
 
                 T r y 
 
                         '   F o r m   m o v e m e n t   s e t   i n t e g e r s 
 
                         x   =   C o n t r o l . M o u s e P o s i t i o n . X   -   M e . L o c a t i o n . X 
 
                         y   =   C o n t r o l . M o u s e P o s i t i o n . Y   -   M e . L o c a t i o n . Y 
 
                 C a t c h   e x   A s   E x c e p t i o n 
 
                         ' j u s t   i n   c a s e 
 
                 E n d   T r y 
 
         E n d   S u b 
 
         ' ' '   < s u m m a r y > 
 
         ' ' '   T h i s   s a m p l e s   s o l v e s   t h e   p r o b l e m   f o r   t h e   b o r d e r l e s s   f o r m   n o t   b e i n g   m o v e a b l e . 
 
         ' ' '   < / s u m m a r y > 
 
         ' ' '   < p a r a m   n a m e = " s e n d e r " > < / p a r a m > 
 
         ' ' '   < p a r a m   n a m e = " e " > < / p a r a m > 
 
         ' ' '   < r e m a r k s > < / r e m a r k s > 
 
         P r i v a t e   S u b   F r m _ A I _ M o u s e M o v e ( s e n d e r   A s   O b j e c t ,   e   A s   M o u s e E v e n t A r g s )   H a n d l e s   M e . M o u s e M o v e 
 
                 T r y 
 
                         '   F o r m   m o v e m e n t   m o v e m e n t 
 
                         I f   e . B u t t o n   =   W i n d o w s . F o r m s . M o u s e B u t t o n s . L e f t   T h e n 
 
                                 n e w p o i n t   =   C o n t r o l . M o u s e P o s i t i o n 
 
                                 n e w p o i n t . X   - =   ( x ) 
 
                                 n e w p o i n t . Y   - =   ( y ) 
 
                                 M e . L o c a t i o n   =   n e w p o i n t 
 
                         E n d   I f 
 
                 C a t c h   e x   A s   E x c e p t i o n 
 
                         ' j u s t   i n   c a s e 
 
                 E n d   T r y 
 
         E n d   S u b 